home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1993 November / JCSM Shareware Collection - 1993-11.iso / install.bat < prev    next >
DOS Batch File  |  1993-10-20  |  681b  |  25 lines

  1. @echo off
  2. if '%1'=='' goto NoParm
  3. if '%2'=='' goto NoParm
  4. mkdir %1:\jcsm9311
  5. copy jcsm.exe %1:\jcsm9311\*.*
  6. copy demo*.* %1:\jcsm9311\*.*
  7. copy jcsminit.exe %1:\jcsm9311\*.*
  8. copy readme.1st %1:\jcsm9311\*.* 
  9. copy jcsmloct.srt %1:\jcsm9311\*.* 
  10. copy lha.exe %1:\jcsm9311\*.* 
  11. %1:
  12. cd %1:\jcsm9311
  13. jcsminit %2
  14. echo Type 'jcsm' to run.
  15. goto end
  16. :NoParm
  17. echo Syntax:   INSTALL X Y where ....
  18. echo             X is the hard drive where the JCSM subdirectory will
  19. echo               be created. (Note: not ':' after the letter)
  20. echo             Y is the drive letter of the CDROM drive
  21. echo               (Again, no ':')
  22. echo           TRY AGAIN...
  23. :end
  24.           
  25.